home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Tools.Dxr / Internal_12_playFrame-newPlay.ls < prev    next >
Encoding:
Text File  |  1998-05-04  |  598 b   |  30 lines

  1. on playFrame vPlace
  2.   global gGoFrame
  3.   if vPlace <> #done then
  4.     set gGoFrame to the frame
  5.     go(vPlace)
  6.   else
  7.     if not voidp(gGoFrame) then
  8.       go(gGoFrame)
  9.     else
  10.       alert("ERROR: Issued a playframe #done without calling playframe first.")
  11.       go(1)
  12.     end if
  13.   end if
  14. end
  15.  
  16. on newPlay vPlace
  17.   global gPlayFrame
  18.   if vPlace <> #done then
  19.     set gPlayFrame to the frame
  20.     play frame vPlace
  21.   else
  22.     if not voidp(gPlayFrame) then
  23.       play done
  24.       go(gPlayFrame)
  25.     else
  26.       alert("ERROR: Issued a newPlay #done without calling newPlay first.")
  27.     end if
  28.   end if
  29. end
  30.